home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / shutdown-fx-201-c / sfx ƒ / sfx control app ƒ / sfx code ƒ / program globals.h < prev    next >
Text File  |  1994-07-11  |  2KB  |  88 lines

  1. /**********************************************************************\
  2.  
  3. File:        program globals.h
  4.  
  5. Purpose:    This is the header file for all the program-specific
  6.             global variables, #defines, enums, and structs.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program in a file named "GNU General Public License".
  20. If not, write to the Free Software Foundation, 675 Mass Ave,
  21. Cambridge, MA 02139, USA.
  22.  
  23. \**********************************************************************/
  24.  
  25. #ifndef _PROGRAM_GLOBALS_H_
  26. #define _PROGRAM_GLOBALS_H_
  27.  
  28. #define CREATOR            '2fx2'
  29. #define APPLICATION_NAME "\pShutdown FX"
  30. #define    SAVE_TYPE        'TEXT'
  31. #define    USED_TYPE        'Fade'
  32. #define UNUSED_TYPE        'Fad0'
  33. #define MODULE_FOLDER    "\pMSG Fades"
  34.  
  35. enum                    /* window indices in gTheWindowData[] lists */
  36. {
  37.     kAbout=0,            /* about box */
  38.     kAboutMSG,            /* "About MSG" splash screen */
  39.     kHelp,                /* help window */
  40.     kMainWindow            /* main graphics window */
  41. };
  42.  
  43. #define    NUM_WINDOWS        4        /* total number of windows (see above enum) */
  44.  
  45. enum ErrorTypes
  46. {
  47.     allsWell=0,
  48.     
  49.     /* shell errors */
  50.     kNoMemory,
  51.     kNoMemoryAndQuitting,
  52.     kProgramIntegrityNotVerified,
  53.     kProgramIntegritySet,
  54.     kSystemTooOld,
  55.     userCancelErr,
  56.     
  57.     /* deBinHex errors */
  58.     kCantOpenInputFile,
  59.     kCantCreateTempFile,
  60.     kBinHexErr,
  61.     kDiskReadErr,
  62.     kDiskWriteErr,
  63.     kNeedMoreBinHexErr,
  64.     
  65.     /* program-specific errors */
  66.     kCantGetProc10Resource,
  67.     kCantGetProc11Resource,
  68.     kNoMemoryInSystemHeap,
  69.     kCantMakeNewGestalt,
  70.     kGestaltImproperlyInstalled,
  71.     kCantFindSystemFolder,
  72.     kCantFindModuleFolder,
  73.     kNoModulesInFolder,
  74.     kCantOpenModule,
  75.     kModuleDamaged,
  76.     kCantGetModuleInfo,
  77.     kCantSetModuleInfo,
  78.     kNoModulesInstalled
  79. };
  80.  
  81. extern    short            gModuleIndex;
  82. extern    char            gChooseRandom, gOnRestart, gOnShutdown, gFadeEarly;
  83. extern    Str255            gModuleName;
  84. extern    long            gModuleDirID;
  85. extern    short            gModuleVRefNum;
  86.  
  87. #endif
  88.